runtime.mspan.allocCache (field)

9 uses

	runtime (current package)
		malloc.go#L850: 	theBit := sys.Ctz64(s.allocCache) // Is there a free object in the allocCache?
		malloc.go#L858: 			s.allocCache >>= uint(theBit + 1)
		mbitmap.go#L160: 	s.allocCache = ^aCache
		mbitmap.go#L177: 	aCache := s.allocCache
		mbitmap.go#L190: 		aCache = s.allocCache
		mbitmap.go#L201: 	s.allocCache >>= uint(bitIndex + 1)
		mcentral.go#L185: 	s.allocCache >>= s.freeindex % 64
		mheap.go#L417: 	allocCache uint64
		mheap.go#L1253: 		s.allocCache = ^uint64(0) // all 1s indicating all free.